home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Fixation 1.3 / error.h < prev    next >
Text File  |  1995-09-16  |  228b  |  10 lines

  1. #define kDoVerifications true
  2.  
  3. #ifdef kDoVerifications
  4. #define verify(x) ((x) ? 1 : verifyFailed(__FILE__, __LINE__))
  5. #else
  6. #define verify(x)
  7. #endif
  8.  
  9. int verifyFailed(char *file, long line);
  10. void VDebugStr( char * format, ... );